home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
...taking it to the Macs!
/
...taking it to the Macs!.iso
/
Extras
/
ActiveX Mac SDK
/
ActiveX SDK
/
Sample Controls
/
BDiamond
/
BDMacros.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-12-20
|
353 b
|
13 lines
|
[
TEXT/CWIE
]
#ifndef _BDMacros_
#define _BDMacros_
///////////////////////////////////////////////////////////////////////////////
//
// Macro definitions:
//
#define STRINGS_ARE_EQUAL(str1,str2) (( strcmp ( str1, str2 ) == 0 ))
#define MAX(num1,num2) ( ( num1 > num2 ) ? num1 : num2 )
#define MIN(num1,num2) ( ( num1 < num2 ) ? num1 : num2 )
#endif // _BDMacros_